home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 February: Tool Chest / Dev.CD Feb 94.toast / Tool Chest / Development Platforms / MPW Related / MPW Interfaces / PInterfaces / Strings.p < prev    next >
Encoding:
Text File  |  1993-09-17  |  784 b   |  44 lines  |  [TEXT/MPS ]

  1. {
  2.     File:        Strings.p
  3.  
  4.     Copyright:    © 1983-1993 by Apple Computer, Inc.
  5.                 All rights reserved.
  6.  
  7.     Version:    System 7.1 for ETO #11
  8.     Created:    Tuesday, March 30, 1993 18:00
  9.  
  10. }
  11.  
  12. {$IFC UNDEFINED UsingIncludes}
  13. {$SETC UsingIncludes := 0}
  14. {$ENDC}
  15.  
  16. {$IFC NOT UsingIncludes}
  17.     UNIT Strings;
  18.     INTERFACE
  19. {$ENDC}
  20.  
  21. {$IFC UNDEFINED UsingStrings}
  22. {$SETC UsingStrings := 1}
  23.  
  24. {$I+}
  25. {$SETC StringsIncludes := UsingIncludes}
  26. {$SETC UsingIncludes := 1}
  27. {$IFC UNDEFINED UsingTypes}
  28. {$I $$Shell(PInterfaces)Types.p}
  29. {$ENDC}
  30. {$SETC UsingIncludes := StringsIncludes}
  31.  
  32.  
  33. FUNCTION C2PStr(cString: UNIV Ptr): StringPtr;
  34. PROCEDURE C2PStrProc(cString: UNIV Ptr);
  35. FUNCTION P2CStr(pString: StringPtr): Ptr;
  36. PROCEDURE P2CStrProc(pString: StringPtr);
  37.  
  38. {$ENDC}    { UsingStrings }
  39.  
  40. {$IFC NOT UsingIncludes}
  41.     END.
  42. {$ENDC}
  43.  
  44.